POST
/
v1
/
workflows
/
{workflow_id}
/
custom_field_selections
curl --request POST \
  --url https://api.rootly.com/v1/workflows/{workflow_id}/custom_field_selections \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/vnd.api+json' \
  --data '{
  "data": {
    "type": "workflow_custom_field_selections",
    "attributes": {
      "workflow_id": "<string>",
      "custom_field_id": 123,
      "incident_condition": "ANY",
      "values": [
        "<string>"
      ],
      "selected_option_ids": [
        123
      ]
    }
  }
}'
{
  "data": {
    "id": "2",
    "type": "workflow_custom_field_selections",
    "attributes": {
      "custom_field_id": 41,
      "workflow_id": "bc7d1ed3-664e-42e4-ae90-e44ad1e8b9b6",
      "incident_condition": "ANY",
      "values": [],
      "selected_option_ids": []
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

workflow_id
string
required

Body

application/vnd.api+json

Response

201
application/vnd.api+json

workflow_custom_field_selection created

The response is of type object.